home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 25 / CU Amiga Magazine's Super CD-ROM 25 (1998)(EMAP Images)(GB)(Track 1 of 2)[!][issue 1998-08].iso / CUCD / Programming / Triton / Source / classes / button.pub3 < prev    next >
Text File  |  1998-05-23  |  777b  |  15 lines

  1. /* class_Button */
  2.  
  3. #define TROB_Button             (TRTG_CLS+0x31) /* A BOOPSI button gadget */
  4.  
  5. #define TRBU_RETURNOK           0x00010000L     /* <Return> answers the button */
  6. #define TRBU_ESCOK              0x00020000L     /* <Esc> answers the button */
  7. #define TRBU_SHIFTED            0x00040000L     /* Shifted shortcut only */
  8. #define TRBU_UNSHIFTED          0x00080000L     /* Unshifted shortcut only */
  9. #define TRBU_YRESIZE            0x00100000L     /* Button resizeable in Y direction */
  10. #define TRBT_TEXT               0L              /* Text button */
  11. #define TRBT_GETFILE            1L              /* GetFile button */
  12. #define TRBT_GETDRAWER          2L              /* GetDrawer button */
  13. #define TRBT_GETENTRY           3L              /* GetEntry button */
  14.  
  15.